home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 201-225 / disk_217 / stevie / readme < prev    next >
Text File  |  1992-05-06  |  2KB  |  73 lines

  1. STEVIE Source Release
  2.  
  3. This is a source release of the STEVIE editor, a public domain clone
  4. of the UNIX editor 'vi'. The program was originally developed for the
  5. Atari ST, but has been ported to UNIX, OS/2, BSD 4.3 and the Amiga as well.
  6.  
  7. There are currently two divergent versions of STEVIE. This version is the one
  8. that was ported to the Amiga and then worked on by me (G. R. Walter). The other
  9. one Tony Andrews continued to work on. My version is faster in some respects
  10. then his version, and his version does a couple of things mine doesn't. 
  11.  
  12. The files included in this release are:
  13.  
  14. README
  15.     This file.
  16.  
  17. stevie.doc
  18.     Reference manual for STEVIE. Assumes familiarity with vi.
  19.  
  20. source.doc
  21.     Quick overview of the major data structures used.
  22.  
  23. porting.doc
  24.     Tips for porting STEVIE to other systems.
  25.  
  26. makefile.dos
  27. makefile.os2
  28. makefile.usg
  29. makefile.tos
  30. makefile.bsd
  31. makefile.amiga.lattice
  32.     Makefiles for MS DOS, OS/2, UNIX System V, Atari ST, BSD 4.3 UNIX and
  33. the Amiga respectively.
  34.  
  35. amiga.c
  36. amiga.h
  37. bsd.c
  38. bsd.h
  39. dos.c
  40. dos.h
  41. os2.c
  42. os2.h
  43. unix.c
  44. unix.h
  45. tos.c
  46. tos.h
  47.     System-dependent routines for the same.
  48.  
  49. alloc.c ascii.h cmdline.c edit.c fileio.c help.c charset.c
  50. keymap.h linefunc.c main.c mark.c misccmds.c normal.c param.c
  51. regexp.c regsub.c version.c regexp.h regmagic.h
  52. param.h ptrfunc.c screen.c search.c stevie.h term.h macros.h
  53.  
  54.     C source and header files for STEVIE.
  55.  
  56. To compile STEVIE for one of the provided systems:
  57.  
  58.     1. Compile the regular expression library and install as
  59.        appropriate for your system.
  60.  
  61.     2. Edit the file 'env.h' to set the system defines as needed.
  62.  
  63.     3. Check the makefile for your system, and modify as needed.
  64.  
  65.     4. Compile.
  66.  
  67. NOTE: implicit in the design is the assumption that char's are unsigned. Thus
  68.       if your compiler assumes different by default, change the default or
  69.       you may have to change the source.
  70.  
  71. Tony Andrews            March  12, 1988
  72. G. R. (Fred) Walter     August 14, 1988
  73.